home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / dev / cross / sasmv14.dms / sasmv14.adf / examples / ds.s < prev    next >
Text File  |  1993-05-22  |  802b  |  33 lines

  1.  
  2. *****************************************************
  3. **
  4. ** Just a little example about the DS command
  5. **
  6. ** (c) 1993 by Infernal Byte Systems, INC.
  7. **
  8. *****************************************************
  9.  
  10.     heap    O=256
  11.  
  12.     ds.l    0,$08154711
  13.  
  14.     ds.b    16,0
  15.     ds.l    4,"FLO!"
  16.     ds.b    4,"FLO!"
  17.     dsr.b    4,"FLO!"
  18.     ds.w    4,"FLO!"
  19.     dsr.w    4,"FLO!"
  20.     ds.t    4,$123456
  21.     dsr.t    4,$123456
  22.  
  23.     ds.b    0,$a9
  24.  
  25. ;the above code produces the following output :
  26. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  27. ;000000:  00000000 00000000 00000000 00000000    ................
  28. ;000010:  464c4f21 464c4f21 464c4f21 464c4f21    FLO!FLO!FLO!FLO!
  29. ;000020:  21212121 21212121 4f214f21 4f214f21    !!!!!!!!O!O!O!O!
  30. ;000030:  214f214f 214f214f 12345612 34561234    !O!O!O!O.4V.4V.4
  31. ;000040:  56123456 56341256 34125634 12563412    V.4VV4.V4.V4.V4.
  32.  
  33.